*.Social-media#pop-up {
  display: flex;
  text-align: center;
}

.Social-media#pop-up {
  padding-top: 0px;
  padding-left: 0px;
  justify-content: center;
  list-style-type: disc;
  margin-top: 0%;
  margin-bottom: 20%;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  margin-left: 100px;
  margin-right: 100px;
  padding-inline-start: 0px;
  unicode-bidi: isolate;
}
  
.Social-media#pop-up li#Facebook {
  padding-top: 100px;
  list-style: none; /* Remove default bullet points */
  margin-top: auto;
  margin-bottom: auto;
  margin-left: auto;
  margin-right: auto;
}

.Social-media#pop-up li#Instagram {
  padding-top: 100px;
  list-style: none; /* Remove default bullet points */
  margin-top: auto;
  margin-bottom: auto;
  margin-left: auto;
  margin-right: auto;
}

.Social-media#pop-up li#Twitter-X {
  padding-top: 100px;
  list-style: none; /* Remove default bullet points */
  margin-top: auto;
  margin-bottom: auto;
  margin-left: auto;
  margin-right: auto;
}

.Social-media#pop-up li#GitHub {
  padding-top: 100px;
  list-style: none; /* Remove default bullet points */
  margin-top: auto;
  margin-bottom: auto;
  margin-left: auto;
  margin-right: auto;
}

.Social-media#pop-up li#linkedIN {
  padding-top: 100px;
  list-style: none; /* Remove default bullet points */
  margin-top: auto;
  margin-bottom: auto;
  margin-left: auto;
  margin-right: auto;
}



/*FACEBOOK*/

#facebook-tooltip-container {
  position: relative;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 17px;
  border-radius: 10px;
}
  
#facebook-tooltip {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  border-radius: 15px;
  box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.2),
    inset -5px -5px 15px rgba(255, 255, 255, 0.1),
    5px 5px 15px rgba(0, 0, 0, 0.3), -5px -5px 15px rgba(255, 255, 255, 0.1);
}

#facebook-profile {
  background: #3b5998;
  border-radius: 10px 15px;
  padding: 10px;
  border: 1px solid #29487d;
}

#facebook-tooltip-container:hover #facebook-tooltip {
  top: -150px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

#facebook-icon {
  text-decoration: none;
  color: #fff;
  display: block;
  position: relative;
}
#facebook-icon #facebook-layer {
  width: 55px;
  height: 55px;
  border: 3px solid #1877f2;
  border-radius: 50%;
  transition: transform 0.3s, border 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 15px rgba(24, 119, 242, 0.7), 0 0 20px rgba(24, 119, 242, 0.5);
}

#facebook-icon:hover #facebook-layer {
  transform: rotate(-35deg) skew(20deg);
  box-shadow: 0 0 30px rgba(24, 119, 242, 1), 0 0 40px rgba(24, 119, 242, 0.7);
}

#facebook-layer span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}

#facebook-layer span,
.text {
  color: #1877f2;
  border-color: #1877f2;
}

#facebook-icon:hover #facebook-layer span {
  box-shadow: -1px 1px 3px #1877f2;
}

#facebook-icon .text {
  position: absolute;
  left: 50%;
  bottom: -5px;
  opacity: 0;
  font-weight: 500;
  transform: translateX(-50%);
  transition: bottom 0.3s ease, opacity 0.3s ease;
}

#facebook-icon:hover .text {
  bottom: -35px;
  opacity: 1;
}

#facebook-icon:hover #facebook-layer span:nth-child(1) {
  opacity: 0.2;
}

#facebook-icon:hover #facebook-layer span:nth-child(2) {
  opacity: 0.4;
  transform: translate(5px, -5px);
}

#facebook-icon:hover #facebook-layer span:nth-child(3) {
  opacity: 0.6;
  transform: translate(10px, -10px);
}

#facebook-icon:hover #facebook-layer span:nth-child(4) {
  opacity: 0.8;
  transform: translate(15px, -15px);
}

#facebook-icon:hover #facebook-layer span:nth-child(5) {
  opacity: 1;
  transform: translate(20px, -20px);
}

#facebookSVG {
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1877f2;
  border-radius: 50%;
  background: linear-gradient(
    45deg,
    #1877f2 0%,
    #3b5998 25%,
    #1877f2 50%,
    #3b5998 75%,
    #1877f2 100%
  );
}

#facebook-user {
  display: flex;
  gap: 10px;
}

#facebook-img {
  width: 50px;
  height: 50px;
  font-size: 25px;
  font-weight: 700;
  border: 1px solid #1877f2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

#facebook-name {
  font-size: 17px;
  font-weight: 700;
  color: #000000;
}

#facebook-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  color: #fff;
}



/* INSTAGRAM */

#instagram-tooltip-container {
  position: relative;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 17px;
  border-radius: 10px;
}

#instagram-tooltip {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  border-radius: 15px;
  box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.2),
    inset -5px -5px 15px rgba(255, 255, 255, 0.1),
    5px 5px 15px rgba(0, 0, 0, 0.3), -5px -5px 15px rgba(255, 255, 255, 0.1);
}

#instagram-profile {
  background: #dc1741;
  border-radius: 10px 15px;
  padding: 10px;
  border: 1px solid #110f0f;
}

#instagram-tooltip-container:hover #instagram-tooltip {
  top: -150px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

#instagram-icon {
  text-decoration: none;
  color: #fff;
  display: block;
  position: relative;
}
#instagram-layer {
  width: 55px;
  height: 55px;
  transition: transform 0.3s;
}
#instagram-icon:hover #instagram-layer {
  transform: rotate(-35deg) skew(20deg);
}
#instagram-layer span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #fff;
  border-radius: 15px;
  transition: all 0.3s;
}

#instagram-layer span,
.text {
  color: #e6683c;
  border-color: #e6683c;
}

#instagram-icon:hover#instagram-layer span {
  box-shadow: -1px 1px 3px #e6683c;
}
#instagram-icon .text {
  position: absolute;
  left: 50%;
  bottom: -5px;
  opacity: 0;
  font-weight: 500;
  transform: translateX(-50%);
  transition: bottom 0.3s ease, opacity 0.3s ease;
}
#instagram-icon:hover .text {
  bottom: -35px;
  opacity: 1;
}

#instagram-icon:hover #instagram-layer span:nth-child(1) {
  opacity: 0.2;
}
#instagram-icon:hover #instagram-layer span:nth-child(2) {
  opacity: 0.4;
  transform: translate(5px, -5px);
}
#instagram-icon:hover #instagram-layer span:nth-child(3) {
  opacity: 0.6;
  transform: translate(10px, -10px);
}
#instagram-icon:hover #instagram-layer span:nth-child(4) {
  opacity: 0.8;
  transform: translate(15px, -15px);
}
#instagram-icon:hover #instagram-layer span:nth-child(5) {
  opacity: 1;
  transform: translate(20px, -20px);
}

#instagramSVG {
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: -webkit-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
}
#instagram-user /*user*/ {
  display: flex;
  gap: 10px;
}
#instagram-img /*img*/ {
  width: 50px;
  height: 50px;
  font-size: 25px;
  font-weight: 700;
  border: 1px solid #e6683c;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
#instagram-name {
  font-size: 17px;
  font-weight: 700;
  color: #f5f5f5;
}
#instagram-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  color: #fff;
}
#instagram-about {
  color: #ccc;
  padding-top: 5px;
}
.twiter {
  text-align: center;
}


/* TWITTWER */

#twitter-x-tooltip-container {
  position: relative;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 17px;
  border-radius: 10px;
}

#twitter-x-tooltip {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  border-radius: 15px;
  box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.2),
    inset -5px -5px 15px rgba(255, 255, 255, 0.1),
    5px 5px 15px rgba(0, 0, 0, 0.3), -5px -5px 15px rgba(255, 255, 255, 0.1);
}

#twitter-x-profile {
  background: #8b02fbae;
  border-radius: 10px 15px;
  padding: 10px;
  border: 1px solid #9d00ff;
}

#twitter-x-tooltip-container:hover #twitter-x-tooltip {
  top: -150px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

#twitter-x-icon {
  text-decoration: none;
  color: #fff;
  display: block;
  position: relative;
}
#twitter-x-layer {
  width: 55px;
  height: 55px;
  transition: transform 0.3s;
}
#twitter-x-icon:hover #twitter-x-layer {
  transform: rotate(-35deg) skew(20deg);
}
#twitter-x-layer span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #fff;
  border-radius: 15px;
  transition: all 0.3s;
}

#twitter-x-layer span,
.text {
  color: #ab9f9b;
  border-color: #55504d;
}

#twitter-x-icon:hover#twitter-x-layer span {
  box-shadow: -1px 1px 3px #5b5350;
}
#twitter-x-icon .text {
  position: absolute;
  left: 50%;
  bottom: -5px;
  opacity: 0;
  font-weight: 500;
  transform: translateX(-50%);
  transition: bottom 0.3s ease, opacity 0.3s ease;
}
#twitter-x-icon:hover .text {
  bottom: -35px;
  opacity: 1;
}

#twitter-x-icon:hover #twitter-x-layer span:nth-child(1) {
  opacity: 0.2;
}
#twitter-x-icon:hover #twitter-x-layer span:nth-child(2) {
  opacity: 0.4;
  transform: translate(5px, -5px);
}
#twitter-x-icon:hover #twitter-x-layer span:nth-child(3) {
  opacity: 0.6;
  transform: translate(10px, -10px);
}
#twitter-x-icon:hover #twitter-x-layer span:nth-child(4) {
  opacity: 0.8;
  transform: translate(15px, -15px);
}
#twitter-x-icon:hover #twitter-x-layer span:nth-child(5) {
  opacity: 1;
  transform: translate(20px, -20px);
}

#twitter-xSVG {
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: -webkit-linear-gradient(
    45deg,
    #f5d7b8 0%,
    #d6ad9e 25%,
    #b97a83 50%,
    #845769 75%,
    #3f2d3a 100%
  );
  background: linear-gradient(
    45deg,
    #dfbe9b 0%,
    #af9187 25%,
    #8e7578 50%,
    #6b6266 75%,
    #424042 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
}
#twitter-x-user {
  display: flex;
  gap: 10px;
}
#twitter-x-img {
  width: 50px;
  height: 50px;
  font-size: 25px;
  font-weight: 700;
  border: 1px solid #000000;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
#twitter-x-name {
  font-size: 17px;
  font-weight: 700;
  color: #dad2cf;
}
#twitter-x-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  color: #fff;
}
#twitter-x-about {
  color: #ccc;
  padding-top: 5px;
}
#twiter {
  text-align: center;
}

  
/* GITHUB */

#github-tooltip-container {
  position: relative;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 17px;
  border-radius: 10px;
}
  
#github-tooltip {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  border-radius: 15px;
  box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.2),
    inset -5px -5px 15px rgba(83, 75, 75, 0.1),
    5px 5px 15px rgba(19, 18, 18, 0.86), -5px -5px 15px rgba(255, 255, 255, 0.1);
}
  
#github-profile {
  background: #393a3b;
  border-radius: 10px 15px;
  padding: 10px;
  border: 1px solid #000000;
}
  
#github-tooltip-container:hover #github-tooltip {
  top: -150px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
  
#github-icon {
  text-decoration: none;
  color: #050404;
  display: block;
  position: relative;
}
#github-icon #github-layer {
  width: 55px;
  height: 55px;
  border: 3px solid #111314;
  border-radius: 50%;
  transition: transform 0.3s, border 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 15px rgba(44, 45, 47, 0.7), 0 0 20px rgba(24, 119, 242, 0.5);
}
  
#github-icon:hover #github-layer {
  transform: rotate(-35deg) skew(20deg);
  box-shadow: 0 0 30px rgb(20, 21, 22), 0 0 40px rgba(24, 119, 242, 0.7);
}
  
#github-layer span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
  
#github-layer span, .text {
  color: #191a1c;
  border-color: #191a1c;
}
  
#github-icon:hover #github-layer span {
  box-shadow: -1px 1px 3px #2b3038;
}
  
#github-icon .text {
  position: absolute;
  left: 50%;
  bottom: -5px;
  opacity: 0;
  font-weight: 500;
  transform: translateX(-50%);
  transition: bottom 0.3s ease, opacity 0.3s ease;
}
  
#github-icon:hover .text {
  bottom: -35px;
  opacity: 1;
}

#github-icon:hover #github-layer span:nth-child(1) {
  opacity: 0.2;
}

#github-icon:hover #github-layer span:nth-child(2) {
  opacity: 0.4;
  transform: translate(5px, -5px);
}

#github-icon:hover #github-layer span:nth-child(3) {
  opacity: 0.6;
  transform: translate(10px, -10px);
}

#github-icon:hover #github-layer span:nth-child(4) {
  opacity: 0.8;
  transform: translate(15px, -15px);
}

#github-icon:hover #github-layer span:nth-child(5) {
  opacity: 1;
  transform: translate(20px, -20px);
}

#githubSVG {
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  border-radius: 50%;
  background: linear-gradient(
    45deg,
    #ffffff 0%,
    #aaa8a8 25%,
    #8f8d8d 50%,
    #737272 75%,
    #4e4d4d 100%
  );
}

#github-user {
  display: flex;
  gap: 10px;
}

#github-img {
  width: 50px;
  height: 50px;
  font-size: 25px;
  font-weight: 700;
  border: 1px solid #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

#github-name {
  font-size: 17px;
  font-weight: 700;
  color: #fafbff;
}

#github-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  color: #fffefe;
}

/* LINKEDIN */

#linkedin-tooltip-container {
  position: relative;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 17px;
  border-radius: 10px;
}

#linkedin-tooltip {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  border-radius: 15px;
  box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.2),
    inset -5px -5px 15px rgba(255, 255, 255, 0.1),
    5px 5px 15px rgba(0, 0, 0, 0.3), -5px -5px 15px rgba(255, 255, 255, 0.1);
}

#linkedin-profile {
  background: #2a2b2f;
  border-radius: 10px 15px;
  padding: 10px;
  border: 1px solid rgba(11, 63, 95, 1);
}

#linkedin-tooltip-container:hover #linkedin-tooltip {
  top: -150px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

#linkedin-icon {
  text-decoration: none;
  color: #fff;
  display: block;
  position: relative;
}
#linkedin-layer {
  width: 55px;
  height: 55px;
  transition: transform 0.3s;
}
#linkedin-icon:hover #linkedin-layer {
  transform: rotate(-35deg) skew(20deg);
}
#linkedin-layer span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #fff;
  border-radius: 5px;
  transition: all 0.3s;
}

#linkedin-layer span,
.text {
  color: #1da1f2;
  border-color: #1da1f2;
}

#linkedin-icon:hover#linkedin-layer span {
  box-shadow: -1px 1px 3px #1da1f2;
}
#linkedin-icon .text {
  position: absolute;
  left: 50%;
  bottom: -5px;
  opacity: 0;
  font-weight: 500;
  transform: translateX(-50%);
  transition: bottom 0.3s ease, opacity 0.3s ease;
}
#linkedin-icon:hover .text {
  bottom: -35px;
  opacity: 1;
}

#linkedin-icon:hover #linkedin-layer span:nth-child(1) {
  opacity: 0.2;
}
#linkedin-icon:hover #linkedin-layer span:nth-child(2) {
  opacity: 0.4;
  transform: translate(5px, -5px);
}
#linkedin-icon:hover #linkedin-layer span:nth-child(3) {
  opacity: 0.6;
  transform: translate(10px, -10px);
}
#linkedin-icon:hover #linkedin-layer span:nth-child(4) {
  opacity: 0.8;
  transform: translate(15px, -15px);
}
#linkedin-icon:hover #linkedin-layer span:nth-child(5) {
  opacity: 1;
  transform: translate(20px, -20px);
}

#linkedin-layer span#linkedinSVG {
  font-size: 30px;
  line-height: 64px;
  text-align: center;
  fill: #1da1f2;
  background: #000;
}
#linkedin-user {
  display: flex;
  gap: 10px;
}
#linkedin-img {
  width: 50px;
  height: 50px;
  font-size: 25px;
  font-weight: 700;
  border: 1px solid #1da1f2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
#linkedin-name {
  font-size: 17px;
  font-weight: 700;
  color: #1da1f2;
}
#linkedin-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  color: #fff;
}